home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Przegladarki internetowe / Mozilla Seamonkey 1.0.5 pl / seamonkey-1.0.5.pl-PL.win32.installer.exe / MAIL.XPI / bin / chrome / messenger.jar / content / messenger / msgSynchronize.js < prev    next >
Encoding:
JavaScript  |  2004-05-24  |  8.1 KB  |  237 lines

  1. /* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
  2.  * ***** BEGIN LICENSE BLOCK *****
  3.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.  *
  5.  * The contents of this file are subject to the Mozilla Public License Version
  6.  * 1.1 (the "License"); you may not use this file except in compliance with
  7.  * the License. You may obtain a copy of the License at
  8.  * http://www.mozilla.org/MPL/
  9.  *
  10.  * Software distributed under the License is distributed on an "AS IS" basis,
  11.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.  * for the specific language governing rights and limitations under the
  13.  * License.
  14.  *
  15.  * The Original Code is mozilla.org Code.
  16.  *
  17.  * The Initial Developer of the Original Code is
  18.  * Netscape Communications Corporation.
  19.  * Portions created by the Initial Developer are Copyright (C) 1998-2001
  20.  * the Initial Developer. All Rights Reserved.
  21.  *
  22.  * Contributor(s):
  23.  *   dianesun@netscape.com
  24.  *
  25.  * Alternatively, the contents of this file may be used under the terms of
  26.  * either of the GNU General Public License Version 2 or later (the "GPL"),
  27.  * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  28.  * in which case the provisions of the GPL or the LGPL are applicable instead
  29.  * of those above. If you wish to allow use of your version of this file only
  30.  * under the terms of either the GPL or the LGPL, and not to allow others to
  31.  * use your version of this file under the terms of the MPL, indicate your
  32.  * decision by deleting the provisions above and replace them with the notice
  33.  * and other provisions required by the GPL or the LGPL. If you do not delete
  34.  * the provisions above, a recipient may use your version of this file under
  35.  * the terms of any one of the MPL, the GPL or the LGPL.
  36.  *
  37.  * ***** END LICENSE BLOCK ***** */
  38.  
  39. var gSyncMail = false;
  40. var gSyncNews = false;
  41. var gSendMessage = true;
  42. var gWorkOffline = false;
  43. var gSynchronizeTree = null;
  44. var gAccountManager = null;
  45. var gParentMsgWindow;
  46. var gMsgWindow;
  47.  
  48. var gInitialFolderStates = {};
  49.  
  50. // RDF needs to be defined for GetFolderAttribute in msgMail3PaneWindow.js
  51. var RDF = Components.classes['@mozilla.org/rdf/rdf-service;1'].getService().QueryInterface(Components.interfaces.nsIRDFService);
  52.  
  53. const MSG_FOLDER_FLAG_OFFLINE = 0x8000000;
  54.  
  55. function OnLoad()
  56. {    
  57.     if (window.arguments && window.arguments[0]) {
  58.         if (window.arguments[0].msgWindow) {
  59.             gParentMsgWindow = window.arguments[0].msgWindow;
  60.         }
  61.     }
  62.                  
  63.     var prefs = Components.classes["@mozilla.org/preferences-service;1"].getService(Components.interfaces.nsIPrefBranch);
  64.     gSyncMail = prefs.getBoolPref("mailnews.offline_sync_mail");
  65.     gSyncNews = prefs.getBoolPref("mailnews.offline_sync_news");
  66.     gSendMessage = prefs.getBoolPref("mailnews.offline_sync_send_unsent");
  67.     gWorkOffline = prefs.getBoolPref("mailnews.offline_sync_work_offline");
  68.     document.getElementById("syncMail").checked = gSyncMail;
  69.     document.getElementById("syncNews").checked = gSyncNews;
  70.     document.getElementById("sendMessage").checked = gSendMessage;
  71.     document.getElementById("workOffline").checked = gWorkOffline;
  72.  
  73.     return true;
  74. }
  75.  
  76. function syncOkButton()
  77. {
  78.  
  79.     gSyncMail = document.getElementById("syncMail").checked;
  80.     gSyncNews = document.getElementById("syncNews").checked;    
  81.     gSendMessage = document.getElementById("sendMessage").checked;
  82.     gWorkOffline = document.getElementById("workOffline").checked;
  83.  
  84.     var prefs = Components.classes["@mozilla.org/preferences-service;1"].getService(Components.interfaces.nsIPrefBranch);
  85.     prefs.setBoolPref("mailnews.offline_sync_mail", gSyncMail);
  86.     prefs.setBoolPref("mailnews.offline_sync_news", gSyncNews);
  87.     prefs.setBoolPref("mailnews.offline_sync_send_unsent", gSendMessage);
  88.     prefs.setBoolPref("mailnews.offline_sync_work_offline", gWorkOffline);
  89.     
  90.     if( gSyncMail || gSyncNews || gSendMessage || gWorkOffline) {
  91.  
  92.         var offlineManager = Components.classes["@mozilla.org/messenger/offline-manager;1"].getService(Components.interfaces.nsIMsgOfflineManager);
  93.         if(offlineManager)
  94.             offlineManager.synchronizeForOffline(gSyncNews, gSyncMail, gSendMessage, gWorkOffline, gParentMsgWindow)
  95.  
  96.     }    
  97.  
  98.     return true;
  99. }
  100.  
  101. function OnSelect()
  102. {      
  103.    top.window.openDialog("chrome://messenger/content/msgSelectOffline.xul", "", "centerscreen,chrome,modal,titlebar,resizable=yes");
  104.    return true;
  105. }
  106.  
  107. function selectOkButton()
  108. {
  109.     return true;
  110. }
  111.  
  112. function selectCancelButton()
  113. {      
  114.     for (var resourceValue in gInitialFolderStates) {
  115.       var resource = RDF.GetResource(resourceValue);
  116.       var folder = resource.QueryInterface(Components.interfaces.nsIMsgFolder);
  117.       if (gInitialFolderStates[resourceValue])
  118.         folder.setFlag(MSG_FOLDER_FLAG_OFFLINE);
  119.       else
  120.         folder.clearFlag(MSG_FOLDER_FLAG_OFFLINE);
  121.     }
  122.     return true;
  123. }
  124.  
  125. function selectOnLoad()
  126. {
  127.     gMsgWindow = Components.classes[msgWindowContractID].createInstance(Components.interfaces.nsIMsgWindow);
  128.     gMsgWindow.SetDOMWindow(window);
  129.  
  130.     gAccountManager = Components.classes["@mozilla.org/messenger/account-manager;1"].getService(Components.interfaces.nsIMsgAccountManager);
  131.     gSynchronizeTree = document.getElementById('synchronizeTree');
  132.  
  133.     SortSynchronizePane('folderNameCol', '?folderTreeNameSort');
  134.  
  135. function SortSynchronizePane(column, sortKey)
  136. {
  137.     var node = FindInWindow(window, column);
  138.     if(!node) {
  139.         dump('Couldnt find sort column\n');
  140.         return;
  141.     }
  142.  
  143.     node.setAttribute("sort", sortKey);
  144.     node.setAttribute("sortDirection", "natural");
  145.     var col = gSynchronizeTree.columns[column];
  146.     gSynchronizeTree.view.cycleHeader(col);
  147. }
  148.  
  149. function FindInWindow(currentWindow, id)
  150. {
  151.     var item = currentWindow.document.getElementById(id);
  152.     if(item)
  153.     return item;
  154.  
  155.     for(var i = 0; i < currentWindow.frames.length; i++) {
  156.         var frameItem = FindInWindow(currentWindow.frames[i], id);
  157.         if(frameItem)
  158.             return frameItem;
  159.     }
  160.  
  161.     return null;
  162. }
  163.  
  164.  
  165. function onSynchronizeClick(event)
  166. {
  167.     // we only care about button 0 (left click) events
  168.     if (event.button != 0)
  169.       return;
  170.  
  171.     var row = {}
  172.     var col = {}
  173.     var elt = {}
  174.  
  175.     gSynchronizeTree.treeBoxObject.getCellAt(event.clientX, event.clientY, row, col, elt);
  176.     if (row.value == -1)
  177.       return;
  178.  
  179.     if (elt.value == "twisty") {
  180.         var folderResource = GetFolderResource(gSynchronizeTree, row.value);
  181.         var msgFolder = folderResource.QueryInterface(Components.interfaces.nsIMsgFolder);
  182.  
  183.         if (!(gSynchronizeTree.treeBoxObject.view.isContainerOpen(row.value))) {
  184.             var serverType = GetFolderAttribute(gSynchronizeTree, folderResource, "ServerType");
  185.             // imap is the only server type that does folder discovery
  186.             if (serverType != "imap") return;
  187.  
  188.             if (GetFolderAttribute(gSynchronizeTree, folderResource, "IsServer") == "true") {
  189.                 var server = msgFolder.server;
  190.                 server.performExpand(gMsgWindow);
  191.             }
  192.             else {
  193.                 var imapFolder = folderResource.QueryInterface(Components.interfaces.nsIMsgImapMailFolder);
  194.                 if (imapFolder) {
  195.                   imapFolder.performExpand(gMsgWindow);
  196.                 }
  197.             }
  198.         }
  199.     }
  200.     else {
  201.       if (col.value.id == "syncCol") {   
  202.         UpdateNode(GetFolderResource(gSynchronizeTree, row.value), row.value);
  203.       }
  204.     }
  205. }  
  206.  
  207. function onSynchronizeTreeKeyPress(event)
  208. {
  209.     // for now, only do something on space key
  210.     if (event.charCode != KeyEvent.DOM_VK_SPACE)
  211.       return;
  212.  
  213.     var treeSelection = gSynchronizeTree.view.selection; 
  214.     for (var i=0;i<treeSelection.getRangeCount();i++) {
  215.       var start = {}, end = {};
  216.       treeSelection.getRangeAt(i,start,end);
  217.       for (var k=start.value;k<=end.value;k++)
  218.         UpdateNode(GetFolderResource(gSynchronizeTree, k), k);
  219.     }
  220. }
  221.  
  222. function UpdateNode(resource, row)
  223. {
  224.     var folder = resource.QueryInterface(Components.interfaces.nsIMsgFolder);
  225.  
  226.     if (folder.isServer)
  227.       return;
  228.  
  229.     if (!(resource.Value in gInitialFolderStates)) {
  230.       gInitialFolderStates[resource.Value] = folder.getFlag(MSG_FOLDER_FLAG_OFFLINE);
  231.     }
  232.     
  233.     folder.toggleFlag(MSG_FOLDER_FLAG_OFFLINE);
  234. }
  235.  
  236.